home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / vsc92nov.zip / io.h < prev    next >
C/C++ Source or Header  |  1992-11-02  |  390b  |  18 lines

  1. /*
  2.  * io.h -- Declarations for Schem's input/output
  3.  *
  4.  * (C) m.b (Matthias Blume), Wed May 13 18:25:01 MET DST 1992, HUB/Ger
  5.  *         Humboldt-University of Berlin, Germany
  6.  *
  7.  * ident "@(#) io.h (C) M.Blume, Humboldt-Uni Berlin, 1.2"
  8.  */
  9.  
  10. # ifndef IO_H_
  11. # define IO_H_
  12.  
  13. extern int file_getc (void *);
  14. extern void file_ungetc (int, void *);
  15. extern void file_putc (int, void *);
  16.  
  17. # endif
  18.